/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
    font-family: "IBM Plex Sans", sans-serif;
}

body{
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    font-size: 16px;
    line-height: 1.5;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
    font-family: "IBM Plex Sans", sans-serif;
}

p{
    font-size: 16px;
    margin: 0;
}

.icon-input {
    padding-left: 2.2rem;
}
.icon-left {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}
.notification-badge {
    top: -0.4rem;
    right: -0.4rem;
    font-size: 0.6rem;
    width: 1rem;
    height: 1rem;
}

.btn_badge .badge {
  position: relative;
  top: -10px;
  right: -8px;
}

.lucide{
    font-size: 24px ;
}

.sidebar {
    width: 260px;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #dee2e6;
    flex: 0 0 auto;
    position: sticky;
    top: 0;
}
.sidebar .nav-link.active {
    background-color: #e7f1ff;
    color: #0d6efd;
    border-right: 3px solid #0d6efd;
}
.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.375rem;
    color: #495057;
}
.sidebar .nav-link:hover {
    background-color: #f8f9fa;
}

.sidebar nav {
    overflow: auto;
}

header{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    padding-top: 14px;
    /* padding-bottom: 13px; */
    padding-bottom: 21px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #cfe2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.table_new_border{
    border: 1px ;
}
.navbar .avatar img {
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
}

.rounded-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
}

.check_btn i{
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    font-size: 10px;
    border-radius: 50%;
    color: #9ca3af;
    background: #9ca3af2e;
    cursor: pointer;
    /* background: #16a34a; */
}

.check_btn input{
    display: none;
}

.check_btn.view_btn input:checked + i{
    color: #16a34a !important;
    background: #dcfce7 !important;
}

.check_btn.download_btn input:checked + i{
    color: #2563eb !important;
    background: #dbeafe !important;
}

.check_btn.upload_btn input:checked + i{
    color: #9333ea !important;
    background: #f3e8ff !important;
}

.check_btn.update_btn input:checked + i{
    color: #ea3333 !important;
    background: #f3e8ff !important;
}

.bg-blue-50{
    background: #eff6ff;
}

.text-blue{
    color: #1d4ed8;
}

.bg-green-50 {
    background: #f0fdf4;
}

.text-green {
    color: #16a34a;
}

.bg-purple-50{
    background: #faf5ff;
}

/* .bg-purple{
    background: #9333ea;
} */

.text-purple{
    color: #9333ea;
}

.bg-gray-50{
    background: #f9fafb;
}

.text-gray{
    color: #4b5563;
}

.folder-card:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease-in-out;
}
.permission-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.card_icon{
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

.card_icon i{
    display: grid;
    place-items: center;
}

.documents_card_new{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    height: 100%;
    background: #fff;
}

.documents_card_new_2.active .documents_card_new{
    background: #eff6ff;
    border: 1px solid #2196f3;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.documents_card_new .card_top{
    margin-bottom: 5px;
    line-height: 1.5;
}
.documents_card_new .documents_type{
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
    background: #f9fafb;
    color: #2563eb;
    font-size: 40px;
}

.documents_card_new_2 .documents_card_new .documents_type{
    color: #e5e7eb;
}

.documents_card_new_2.active .documents_card_new .documents_type{
    background: #fff;
}

.documents_card_new .content p{
    margin: 10px 0;
    line-height: 1.5;
}
.documents_card_new .content span{
    line-height: 1.5;
}


.btn-light {
  border: none;
  background: #f8f9fa;
  transition: background 0.2s ease;
}

.btn-light:hover {
  background: #e9ecef;
}

.btn-new-primary{
    background-color: #e7f1ff;
    color: #0d6efd;
}

.table-responsive{
    padding: 25px;
}
.heading_1 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}
h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.card {
    border: 1px solid #e9e9e9;
}

.my_drive_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
}

.documents_card_new_folder{
    /* padding: 15px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    height: 100%;
    background: #f3f3f3; */
    display: flex;
    align-items: center;
    gap: 20px;
}
.documents_type_icon i{
    font-size: 20px;
    color: #666666;
}
.documents_card_new_folder .content span{
    font-size: 13px;
    color: #6b6b6b;
}
.documents_card_new_folder .content p{
    font-size: 16px;
    color: #212529;
}

.documents_card_new .content span{
    font-size: 13px;
    color: #6b6b6b;
}
.documents_card_new .content p{
    font-size: 16px;
    color: #212529;
}

.folder_card_main {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    height: 100%;
    background: #f3f3f3;
}
.date_name {
    border-top: 1px dashed #f1f1f1;
    gap: 20px;
}
.date_name span {
    font-size: 13px;
    color: #6b6b6b;
    margin-top: 10px;
}




/* Large desktops */
@media only screen and (min-width: 1441px) and (max-width: 1600px) {
  .col-xl-2 {
                flex: 0 0 auto;
                width: 25%; /* 4 cards per row on xl screens */
            }
}

/* Extra large desktops */
@media only screen and (min-width: 1601px) {
  .col-xl-2 {
                flex: 0 0 auto;
                width: 20%; /* 4 cards per row on xl screens */
            }
}



@media screen and (min-device-width: 1366px) and (max-device-width: 1440px) { 
   .col-xl-2 {
                flex: 0 0 auto;
                width: 25%; /* 4 cards per row on xl screens */
            }
    
}


@media screen and (min-device-width: 1280px) and (max-device-width: 1366px) { 
   .col-xl-2 {
                flex: 0 0 auto;
                width: 25%; /* 4 cards per row on xl screens */
            }
    
}

@media screen and (min-device-width: 1024px) and (max-device-width: 1280px) { 
   .col-xl-2 {
                flex: 0 0 auto;
                width: 33.33%; /* 3 cards per row on xl screens */
            }
    
}

@media (width: 1280px) {
    .container-fluid {
        padding: 0 30px;
    }
    
    .documents_card_new_folder {
        /* height: 120px; */
        padding: 16px;
    }
    
    .documents_type_icon i {
        font-size: 2.2rem;
    }
}


/* .hover_card {
    transition: background-color 0.3s 
ease;
    padding: 20px;
    border: 1px solid #0d6efd;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
} */